Make return values of pdb_readBLAH signed.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sat, 17 Aug 2002 06:17:28 +0000 (06:17 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sat, 17 Aug 2002 06:17:28 +0000 (06:17 +0000)
gpsbabel/defs.h

index 4b74d8d41e498e6fcff1dc8db92c7e08650bb954..fe57a43533b37c6cb597aebeb27303b20223cfb7 100644 (file)
@@ -67,7 +67,6 @@ typedef struct {
 typedef struct {
        queue Q;
        position position;
-       time_t time_created; 
        char *shortname;
        char *description;
        char *url;
@@ -120,7 +119,7 @@ typedef struct {
  * Protypes for Palm/OS helpers.
  */
 
-int pdb_read2(pdb_16 *p);
-int pdb_read4(pdb_32 *p);
+signed int pdb_read2(pdb_16 *p);
+signed int pdb_read4(pdb_32 *p);
 void pdb_write2(pdb_16 *pp, unsigned i);
 void pdb_write4(pdb_32 *pp, unsigned i);